home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Show Attributes.xpl
< prev
next >
Wrap
Text File
|
2002-03-16
|
1KB
|
49 lines
"FILE"="Xteq Systems X-Setup Plugin 6.0"
"TYPE"="6"
"COUNT"="1"
"UIPATH"="Appearance\Explorer\Settings"
"NAME"="Show Attributes Column"
"VERSION"="1.12"
"LANGUAGE"="VBScript"
"OSVERSION"="001011"
"TEXT 1"="Show Attributes in Details View"
"DESCRIPTION 1"=By default, Windows does not display the Attributes Column (Details View) in Explorer. With this setting you can get it back."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://www.xteq.com/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Updated by CptSiskoX"
sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ShowAttribCol"
Sub Plugin_Initialize
i=RegReadValue(sV1)
if i=1 then SetUIElement 1,true
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sV1,"1",2)
else
if RegValueExists(sV1) then
Call RegDeleteValue(sV1)
end if
end if
Call Logoff()
End Sub
Sub Plugin_Terminate
End Sub